home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 07-08.BAS < prev    next >
BASIC Source File  |  1991-06-06  |  425b  |  29 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. FGsetmode 16
  7. FGsetcolor 10
  8. FGinitw
  9. FGsetworld 0.0, 6.39, 0.0, 3.49
  10. FGsetratio 2.0
  11. FGsetsizew 0.21
  12.  
  13. FGmovew 3.2, 3.0
  14. FGswchar "cos\^2\h\ + sin\^2\h\ = 1", 25, 0
  15.  
  16. FGmovew 3.2, 2.0
  17. FGswchar "H\v2O   U\v2\v3\v2", 18, 0
  18.  
  19. FGmovew 3.2, 1.0
  20. FGsetratio 1.0
  21. FGswchar "One _word_ is underlined.", 25, 0
  22.  
  23. FGwaitkey
  24.  
  25. FGsetmode OldMode
  26. FGreset
  27.  
  28. END
  29.